home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / sun4c.md / timerMach.h < prev    next >
C/C++ Source or Header  |  1990-09-10  |  975b  |  32 lines

  1. /*
  2.  * timerMach.h --
  3.  *
  4.  *    Machine dependent declarations for the timer module.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/kernel/timer/sun4c.md/RCS/timerMach.h,v 1.1 90/09/04 23:39:18 jhh Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _TIMERMACH
  19. #define _TIMERMACH
  20.  
  21. /*
  22.  * The timer callback interval, in microseconds.  This is an approximate
  23.  * value for those machines whose interval is not a whole number of 
  24.  * microseconds.
  25.  */
  26.  
  27. #define TIMER_CALLBACK_INTERVAL_APPROX    20000
  28. #define TIMER_PROFILE_INTERVAL_APPROX    10000
  29.  
  30. #endif /* _TIMERMACH */
  31.  
  32.